home *** CD-ROM | disk | FTP | other *** search
- stop();
- _root.nono = false;
- _root.mtrue.bar = 400;
- if(_root.medium == true)
- {
- _root.mtrue.gotoAndStop(2);
- }
- _root.onMouseDown = function()
- {
- if(_root.mtrue.bar > 0)
- {
- _root.ground.moveTo(_xmouse,_ymouse);
- _root.ground.lineTo(_xmouse + 1,_ymouse + 1);
- if(_root.medium == true)
- {
- _root.mtrue.bar -= 12;
- }
- _root.dist = 0;
- _root.prevx = _xmouse;
- _root.prevy = _ymouse;
- mousedown = true;
- }
- };
- _root.onMouseUp = function()
- {
- if(_root.mtrue.bar > 0)
- {
- mousedown = false;
- }
- };
- _root.onMouseMove = function()
- {
- if(mousedown)
- {
- if(_root.mtrue.bar > 0)
- {
- _root.xdiff = prevx - _xmouse;
- _root.ydiff = prevy - _ymouse;
- _root.dist = Math.sqrt(xdiff * xdiff + ydiff * ydiff);
- if(_root.medium == true)
- {
- _root.mtrue.bar -= _root.dist;
- }
- _root.dist = 0;
- prevx = _xmouse;
- prevy = _ymouse;
- _root.ground.lineTo(_xmouse,_ymouse);
- }
- }
- };
-